home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / a_utils / perl / prlbkxmp.lha / ch1 / shuffle < prev    next >
Text File  |  1991-01-07  |  230b  |  7 lines

  1. #!/usr/bin/perl
  2. srand;                      # Randomize the rand function.
  3. @lines = <>;                # Read in all the lines.
  4. while (@lines) {            # While more than 0 elements.
  5.     print splice(@lines, rand @lines, 1);
  6. }
  7.